int pole[3] = {1, 2, 3};
for(int n : pole)
{
    cout << n << endl;
}